home *** CD-ROM | disk | FTP | other *** search
- package com.ibm.xml.parser;
-
- public class InsertableElement {
- public String name;
- public boolean status;
- public int index;
-
- public InsertableElement(String var1) {
- this(var1, false);
- }
-
- public InsertableElement(String var1, boolean var2) {
- this.status = false;
- this.index = -1;
- this.name = var1;
- this.status = var2;
- this.index = -1;
- }
-
- public InsertableElement(int var1) {
- this.status = false;
- this.index = -1;
- this.name = " *ERROR* ";
- this.status = true;
- this.index = var1;
- }
-
- public String toString() {
- return " *ERROR* ".equals(this.name) ? "InsertableElement[\"" + this.name + "\", " + this.status + ", " + this.index + "]" : "InsertableElement[\"" + this.name + "\", " + this.status + "]";
- }
- }
-